home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / misc / amag / sh9301e.lha / Maxon-CPP-Demo / Include / assert.h next >
C/C++ Source or Header  |  1993-02-17  |  233b  |  12 lines

  1. #ifndef __INCLUDE_ASSERT_H
  2. #define __INCLUDE_ASSERT_H
  3.  
  4. #ifdef NDEBUG
  5. #define assert(C)
  6. #else
  7. extern "Asm" void do__assert(char*, char*, unsigned int);
  8. #define assert(C) { if(!(C)) do__assert(#C, __FILE__, __LINE__); }
  9. #endif
  10.  
  11. #endif
  12.